Metadata-Version: 2.1
Name: Yating-TTS-SDK
Version: 0.1.0
Summary: Yating TTS SDK
Home-page: https://github.com/TaiwanAILabs-Yating/tts-sdk-python
Author: pinkeyu7
Author-email: pinke.yu7@gmail.com
License: UNKNOWN
Description: # Yating TTS SDK - Python version
        
        ## Install
        
        Initial Install
        
        ```bash
        pip install Yating-TTS-SDK
        ```
        
        Upgrade existed package
        
        ```bash
        pip install Yating-TTS-SDK --upgrade
        ```
        
        ## PyPI Link
        
        [Yating-TTS-SDK](https://pypi.org/project/Yating-TTS-SDK/)
        
        ## Available Key
        
        - Please contact Yating TTS
        
        ### Input
        
        ```JSON
        {
            "input": {
                "text": "sentence, the text that you want to generate audio",
                "type": "text"
            },
            "voice": {
                "model": "zh_en_female_1"
            },
            "audioConfig": {
                "encoding": "LINEAR16",
                "sampleRate": "16K"
            }
        }
        ```
        
        ## Available Variable
        
        ### Input Type
        
        | Name | Description                        |
        | ---- | ---------------------------------- |
        | text | Recognize input.text as pure text. |
        
        ### Voice Model
        
        | Name           | Sample Rate | Description                       |
        | -------------- | ----------- | --------------------------------- |
        | zh_en_female_1 | 16k         | Yating speak Mandarin and English |
        | zh_en_female_2 | 16k         | Yiqing speak Mandarin and English |
        | zh_en_male_1   | 16k         | Jiahao speak Mandarin and English |
        
        ### Encoding Format
        
        | Name     | File Extension | Description                 |
        | -------- | -------------- | --------------------------- |
        | MP3      | .mp3           | Compressed audio            |
        | LINEAR16 | .wav           | Uncompromised audio quality |
        
        ### Sampling Rate
        
        | Name | Description            |
        | ---- | ---------------------- |
        | 16K  | Sampling rate in 16khz |
        
Keywords: text to speech
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
